home *** CD-ROM | disk | FTP | other *** search
/ Linux Cubed Series 7: Sunsite / Linux Cubed Series 7 - Sunsite Vol 1.iso / system / shells / kiss-0.11 / kiss-0 / kiss / src / banner.c < prev    next >
C/C++ Source or Header  |  1995-03-23  |  603b  |  27 lines

  1. #include "kiss.h"
  2. #include "version.h"
  3. #include "subversion.h"
  4.  
  5. void banner ()
  6. {
  7.     static char
  8.     *msg [] =
  9.     {
  10.         "Keep It Simple Stupid!",
  11.         "the Keep It Simple Shell",
  12.         "Karel's Interactive Simple Shell",
  13.         "Karel's Incredibly Stupid Shell",
  14.     };
  15.  
  16.     srand ( (int) time (NULL) );
  17.     
  18.     printf ("KISS V" VERSION " [" SUBVERSION "]\n"
  19.         "Copyright (c) Karel Kubat / ICCE 1995. All rights reserved.\n"
  20.         "Another MegaHard production!\n"
  21.         "%s by karel Kubat (karel@icce.rug.nl).\n"
  22.         "%s\n\n",
  23.         progname, msg [rand () % (sizeof (msg) / sizeof (char *))]);
  24.  
  25.     exit (1);
  26. }
  27.